home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / comm1 / dnload30.zip / DLSETUP.WAS < prev    next >
Text File  |  1993-04-18  |  560b  |  27 lines

  1. ;****Download Pro Main Setup 2.0b (c) 1993, Michael Lee ******** 
  2. proc main
  3. integer status
  4. dialogbox 112 63 124 95 2 "Download Pro Setup"
  5.    pushbutton 18 6 84 24 "Setup &Download Pro" normal
  6.    pushbutton 18 37 84 24 "Setup &BBS Information" normal
  7.    pushbutton 18 70 84 15 "&CANCEL" cancel
  8. enddialog
  9. status=$DIALOG
  10.  while status!=1
  11.   if status==10
  12.     execute "setup1.wax"
  13.     exitwhile
  14.   endif
  15.   if status==11
  16.     execute "boardset.wax"
  17.     exitwhile
  18.   endif
  19.   if status==1
  20.      exit
  21.   endif
  22.   status=$DIALOG
  23.   endwhile
  24. endproc
  25.  
  26.  
  27.